Add skills package with upgrade-react-native skill#1
Closed
Conversation
Introduces a new `skills/` directory at the repo root, distributed as `@react-native-community/skills`. This follows the pattern established by expo/skills — installable in Claude Code (via plugin marketplace) and Cursor (via Remote Rules). The first skill, `upgrade-react-native`, guides an AI agent through upgrading a React Native Community CLI project by: - Detecting the current react-native version from package.json - Fetching the unified diff from rn-diff-purge (the same data source as the Upgrade Helper web UI) - Mapping template paths (RnDiffApp/) to the actual project - Categorizing changes and presenting a plan before applying - Providing a post-upgrade checklist https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc
Adds step 7 to the upgrade-react-native skill which scans project dependencies for third-party React Native libraries with native code, fetches their README for a version compatibility table, and proposes version bumps where documented support for the target RN version exists. https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc
Remove the intermediate plugins/react-native-upgrade/ layer. Skills now live directly under skills/<skill-name>/. This enables a simpler install command: npx skills add react-native-community/skills Merge marketplace.json and plugin.json into a single plugin.json at the skills root. https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces a new
skills/directory at the repo root, distributed as@react-native-community/skills. This follows the pattern establishedby expo/skills — installable in Claude Code (via plugin marketplace)
and Cursor (via Remote Rules).
The first skill,
upgrade-react-native, guides an AI agent throughupgrading a React Native Community CLI project by:
as the Upgrade Helper web UI)
https://claude.ai/code/session_019uZymRV1PLDAHFYuHxAndc